/**
 * 📝 Notes for Contributors:
 * 
 * - When creating an interactive component, we recommend creating hooks that 
 * handles accessibility, state management, and behavior concerns.
 * 
 * - Hooks should return prop-getters and some state information.
 * 
 * > If you're not creating an interactive component, you can delete this file.
 * 
 * @see https://chakra-ui.com/guides/component-guide
 */

import * as React from "react"

export interface Use{{capitalize componentName}}Props {
}

export function use{{capitalize componentName}}(props: Use{{capitalize componentName}}Props) {
  return {};
}

export type Use{{capitalize componentName}}Return = ReturnType<typeof use{{capitalize componentName}}>